Skip to content

Instantly share code, notes, and snippets.

@drpdishant
drpdishant / passbolt-ssh
Created September 11, 2026 11:36
passbolt-ssh β€” SSH into Passbolt-stored hosts via metadata custom fields
#!/usr/bin/env bash
set -euo pipefail
show_help() {
cat << 'EOF'
Passbolt SSH Wrapper (Custom Fields / Secret Metadata)
USAGE:
passbolt-ssh [OPTIONS] [USER@]RESOURCE_NAME [-- SSH_OPTIONS...]
@pipethedev
pipethedev / go-deslop.md
Created September 7, 2026 13:10
Markdown file to de-slop your go codebase

Go Codebase Cleanup: Remove Defensive Over-Engineering and AI Slop

Audit this Go codebase and aggressively simplify AI-generated, defensive, overly abstract, or unnecessarily generic code.

The goal is to make the code look like it was written by an experienced Go engineer:

  • simple
  • explicit
  • strongly typed
  • boring
@rajkosto
rajkosto / odi_keygen.py
Created November 18, 2022 12:56
ODI SFP XPON stick MAC_KEY generator
#!/usr/bin/env python3
#ODI DFP-34X-2C2 MAC_KEY key generator by rajkosto
import sys
import string
import hashlib
args = sys.argv
if len(args) != 2:
sys.exit("Usage: odi_keygen.py YOURMACADDR")
@vuddameri
vuddameri / thomas-algorithm.ipynb
Created November 6, 2021 07:37
Thomas Algorithm.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Aman-20
Aman-20 / cpp_oop_notes.md
Created June 24, 2026 05:39
Notes covering core OOP concepts in C++ with examples.
@evilJazz
evilJazz / MI50_32GB_VBIOS.md
Last active September 11, 2026 12:16
MI50 32GB VBIOS

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@madebyollin
madebyollin / dlss_5_model_architecture.md
Created August 30, 2026 15:12
What is the DLSS5 model architecture?
@theaniketgiri
theaniketgiri / create-llm.md
Created October 24, 2025 16:40
Train Your Own Language Model in Under 5 Minutes

Train Your Own Language Model in Under 5 Minutes

Ever wondered how ChatGPT or Claude are trained? You can train your own language model in under 5 minutes. Here's how.

Why Train Your Own LLM?

Before we dive in, you might ask: "Why bother training my own when ChatGPT exists?"

Fair question. Here's why: